home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-MIPS / BCACHE.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  610b  |  23 lines

  1. /*
  2.  * include/asm-mips/bcache.h
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (c) 1997 by Ralf Baechle
  9.  *
  10.  * $Id: bcache.h,v 1.1 1998/05/01 01:35:46 ralf Exp $
  11.  */
  12. struct bcache_ops {
  13.     void (*bc_enable)(void);
  14.     void (*bc_disable)(void);
  15.     void (*bc_wback_inv)(unsigned long page, unsigned long size);
  16.     void (*bc_inv)(unsigned long page, unsigned long size);
  17. };
  18.  
  19. extern void indy_sc_init(void);
  20. extern void sni_pcimt_sc_init(void);
  21.  
  22. extern struct bcache_ops *bcops;
  23.